home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {app} / InstallData / Templates / Java / Main.java < prev   
Encoding:
Java Source  |  2006-08-30  |  231 b   |  13 lines

  1. /*
  2.    A simple Java template here called Main.
  3.    Rename the class as needed.
  4. */
  5. class Main {
  6.    // The program begins with a call to main().
  7.    public static void main(String args[]) {
  8.       // Your code here
  9.  
  10.    }
  11. }
  12.  
  13.